bufio.Writer.n (field)
27 uses
bufio (current package)
bufio.go#L583: n int
bufio.go#L631: b.n = 0
bufio.go#L640: if b.n == 0 {
bufio.go#L643: n, err := b.wr.Write(b.buf[0:b.n])
bufio.go#L644: if n < b.n && err == nil {
bufio.go#L648: if n > 0 && n < b.n {
bufio.go#L649: copy(b.buf[0:b.n-n], b.buf[n:b.n])
bufio.go#L651: b.n -= n
bufio.go#L655: b.n = 0
bufio.go#L660: func (b *Writer) Available() int { return len(b.buf) - b.n }
bufio.go#L667: return b.buf[b.n:][:0]
bufio.go#L671: func (b *Writer) Buffered() int { return b.n }
bufio.go#L685: n = copy(b.buf[b.n:], p)
bufio.go#L686: b.n += n
bufio.go#L695: n := copy(b.buf[b.n:], p)
bufio.go#L696: b.n += n
bufio.go#L709: b.buf[b.n] = c
bufio.go#L710: b.n++
bufio.go#L739: size = utf8.EncodeRune(b.buf[b.n:], r)
bufio.go#L740: b.n += size
bufio.go#L765: n = copy(b.buf[b.n:], s)
bufio.go#L766: b.n += n
bufio.go#L775: n := copy(b.buf[b.n:], s)
bufio.go#L776: b.n += n
bufio.go#L805: m, err = r.Read(b.buf[b.n:])
bufio.go#L814: b.n += m
The pages are generated with Golds v0.7.6. (GOOS=linux GOARCH=amd64)